home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 3: CDPD 3 / Almathera Ten on Ten - Disc 3: CDPD3.iso / scope / 126-150 / scopedisk132 / algorhythms / source / algorhythms.h < prev    next >
C/C++ Source or Header  |  1995-03-19  |  234b  |  14 lines

  1. #define MAXVOICE (16)
  2.  
  3. struct NoteEvent {
  4.     int Pitch;
  5.     int Dynamic;
  6.     double StartTime;
  7.     double Duration;
  8.     int Channel;
  9.     int CurPitch;
  10.     int LowPitch; /* CHANGE THIS IN ALGORHYTHMS.C AND MUSICSERIAL.C*/
  11.     int HighPitch;
  12.     int Walking;
  13. };
  14.